home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / CLREOL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  220 b   |  12 lines

  1. /* p874.c --- Bible */
  2. #include <conio.h>
  3. char textstr[] = "Testing clreol. Press any key to "
  4.                     "erase this sentence.";
  5. main()
  6. {
  7.     gotoxy(10,5);
  8.     cputs(textstr);
  9.     getch();
  10.     gotoxy(10 + 16, 5);
  11.     clreol();
  12. }